翻訳と辞書
Words near each other
・ Stream load
・ Stream metabolism
・ Stream of consciousness
・ Stream of Consciousness (album)
・ Stream of Consciousness (instrumental)
・ Stream of consciousness (narrative mode)
・ Stream of consciousness (psychology)
・ Stream of Consciousness (The Outer Limits)
・ Stream of Life
・ Stream of Passion
・ Stream of unconsciousness (narrative mode)
・ Stream Passage Pot
・ Stream pool
・ Stream power
・ Stream power law
Stream processing
・ Stream processor
・ Stream processors
・ Stream Processors, Inc
・ Stream recorder
・ Stream Reservation Protocol
・ Stream restoration
・ Stream ripper
・ Stream socket
・ Stream thrust averaging
・ Stream tree frog
・ Stream TV
・ Stream unconference
・ Stream X-Machine
・ Streambank froglet


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Stream processing : ウィキペディア英語版
Stream processing

Stream processing is a computer programming paradigm, equivalent to dataflow programming and reactive programming,〔(A SHORT INTRO TO STREAM PROCESSING )〕 that allows some applications to more easily exploit a limited form of parallel processing. Such applications can use multiple computational units, such as the FPUs on a GPU or field programmable gate arrays (FPGAs),〔(FCUDA: Enabling Efficient Compilation of CUDA Kernels onto FPGAs )〕 without explicitly managing allocation, synchronization, or communication among those units.
The stream processing paradigm simplifies parallel software and hardware by restricting the parallel computation that can be performed. Given a set of data (a ''stream''), a series of operations (''kernel functions'') is applied to each element in the stream. ''Uniform streaming'', where one kernel function is applied to all elements in the stream, is typical. Kernel functions are usually pipelined, and local on-chip memory is reused to minimize external memory bandwidth. Since the kernel and stream abstractions expose data dependencies, compiler tools can fully automate and optimize on-chip management tasks. Stream processing hardware can use scoreboarding, for example, to launch DMAs at runtime, when dependencies become known. The elimination of manual DMA management reduces software complexity, and the elimination of hardware caches reduces the amount of the area not dedicated to computational units such as ALUs.
During the 1980s stream processing was explored within dataflow programming. An example is the language SISAL (Streams and Iteration in a Single Assignment Language).
== Applications ==
Stream processing is essentially a compromise, driven by a data-centric model that works very well for traditional DSP or GPU-type applications (such as image, video and digital signal processing) but less so for general purpose processing with more randomized data access (such as databases). By sacrificing some flexibility in the model, the implications allow easier, faster and more efficient execution. Depending on the context, processor design may be tuned for maximum efficiency or a trade-off for flexibility.
Stream processing is especially suitable for applications that exhibit three application characteristics:
* Compute Intensity, the number of arithmetic operations per I/O or global memory reference. In many signal processing applications today it is well over 50:1 and increasing with algorithmic complexity.
* Data Parallelism exists in a kernel if the same function is applied to all records of an input stream and a number of records can be processed simultaneously without waiting for results from previous records.What is called as Task-level (function or control) Parallelism? How it is different from Data Parallelism?
* Data Locality is a specific type of temporal locality common in signal and media processing applications where data is produced once, read once or twice later in the application, and never read again. Intermediate streams passed between kernels as well as intermediate data within kernel functions can capture this locality directly using the stream processing programming model.
Examples of records within streams include:
* In graphics, each record might be the vertex, normal, and color information for a triangle;
* In image processing, each record might be a single pixel from an image;
* In a video encoder, each record may be 256 pixels forming a macroblock of data; or
* In wireless signal processing, each record could be a sequence of samples received from an antenna.
For each record we can only read from the input, perform operations on it, and write to the output. It is permissible to have multiple inputs and multiple outputs, but never a piece of memory that is both readable and writable.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Stream processing」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.